Nevron Open Vision Documentation
Nevron.Nov Namespace / FunctionResult<TRes,TArg> Delegate


In This Topic
    FunctionResult<TRes,TArg> Delegate
    In This Topic
    Delegate for a function that returns a result of the TRes and has one argument of type TArg.
    Syntax
    'Declaration
     
    
    Public Delegate Function FunctionResult
        (Of TRes,TArg)( _
       ByVal arg As TArg _
    ) As TRes
    'Usage
     
    
    Dim instance As New FunctionResult(Of TRes,TArg)(AddressOf HandlerMethod)
    public delegate TRes FunctionResult<TRes,TArg>( 
       TArg arg
    )

    Parameters

    arg

    Type Parameters

    TRes
    TArg
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also